home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_gimp.idb / usr / freeware / share / gimp / scripts / egg.scm.z / egg.scm
Encoding:
GIMP Script-Fu Script  |  1999-07-21  |  494 b   |  18 lines

  1. ; Aspirin and Yosh present: Fun with eggs
  2. ;
  3.  
  4. (define (script-fu-egg-catcher coolfile)
  5.   (let* ((image (car (gimp-file-load 1 coolfile coolfile)))
  6.      (drawable (car (gimp-image-active-drawable image))))
  7.     (plug-in-the-egg 1 image drawable)
  8.     (gimp-display-new image)))
  9.  
  10. (script-fu-register "script-fu-egg-catcher" 
  11.             "<None>"
  12.             "Invoke The Egg!"
  13.             "Adam D. Moss & Manish Singh"
  14.             "Adam D. Moss & Manish Singh"
  15.             "1998/04/19"
  16.             ""
  17.             SF-VALUE "Cool File" "foo.xcf")
  18.